home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 20 / AMIGAplus Sonderheft 20 (1999)(ICP)(DE)[!].iso / PublicDomain / Alternatives / LinuxAPUS / Docs / kernel-options.txt < prev    next >
Text File  |  1999-01-01  |  34KB  |  911 lines

  1.  
  2.  
  3.                   Command Line Options for Linux/m68k
  4.                   ===================================
  5.  
  6. Last Update: Nov 28, 1997
  7. Linux/m68k version: 2.1.64
  8. Author: Roman.Hodek@informatik.uni-erlangen.de (Roman Hodek)
  9. Update: jds@kom.auc.dk (Jes Sorensen)
  10.  
  11. 0) Introduction
  12. ===============
  13.  
  14.   Often I've been asked which command line options the Linux/m68k
  15. kernel understands, or how the exact syntax for the ... option is, or
  16. ... about the option ... . I hope, this document supplies all the
  17. answers...
  18.  
  19.   Note that some options might be outdated, their descriptions being
  20. incomplete or missing. Please update the information and send in the
  21. patches.
  22.  
  23.  
  24. 1) Overview of the Kernel's Option Processing
  25. =============================================
  26.  
  27. The kernel knows three kinds of options on its command line:
  28.  
  29.   1) kernel options
  30.   2) environment settings
  31.   3) arguments for init
  32.  
  33. To which of these classes an argument belongs is determined as
  34. follows: If the option is known to the kernel itself, i.e. if the name
  35. (the part before the '=') or, in some cases, the whole argument string
  36. is known to the kernel, it belongs to class 1. Otherwise, if the
  37. argument contains an '=', it is of class 2, and the definition is put
  38. into init's environment. All other arguments are passed to init as
  39. command line options.
  40.  
  41.   This document describes the valid kernel options for Linux/m68k in
  42. the version mentioned at the start of this file. Later revisions may
  43. add new such options, and some may be missing in older versions.
  44.  
  45.   In general, the value (the part after the '=') of an option is a
  46. list of values separated by commas. The interpretation of these values
  47. is up to the driver that "owns" the option. This association of
  48. options with drivers is also the reason that some are further
  49. subdivided.
  50.  
  51.  
  52. 2) General Kernel Options
  53. =========================
  54.  
  55. 2.1) root=
  56. ----------
  57.  
  58. Syntax: root=/dev/<device>
  59.     or: root=<hex_number>
  60.  
  61. This tells the kernel which device it should mount as the root
  62. filesystem. The device must be a block device with a valid filesystem
  63. on it.
  64.  
  65.   The first syntax gives the device by name. These names are converted
  66. into a major/minor number internally in the kernel in an unusual way.
  67. Normally, this "conversion" is done by the device files in /dev, but
  68. this isn't possible here, because the root filesystem (with /dev)
  69. isn't mounted yet... So the kernel parses the name itself, with some
  70. hardcoded name to number mappings. The name must always be a
  71. combination of two or three letters, followed by a decimal number.
  72. Valid names are:
  73.  
  74.   /dev/ram: -> 0x0100 (initial ramdisk)
  75.   /dev/hda: -> 0x0300 (first IDE disk)
  76.   /dev/hdb: -> 0x0340 (second IDE disk)
  77.   /dev/sda: -> 0x0800 (first SCSI disk)
  78.   /dev/sdb: -> 0x0810 (second SCSI disk)
  79.   /dev/sdc: -> 0x0820 (third SCSI disk)
  80.   /dev/sdd: -> 0x0830 (forth SCSI disk)
  81.   /dev/sde: -> 0x0840 (fifth SCSI disk)
  82.   /dev/fd : -> 0x0200 (floppy disk)
  83.   /dev/xda: -> 0x0c00 (first XT disk, unused in Linux/m68k)
  84.   /dev/xdb: -> 0x0c40 (second XT disk, unused in Linux/m68k)
  85.   /dev/ada: -> 0x1c00 (first ACSI device)
  86.   /dev/adb: -> 0x1c10 (second ACSI device)
  87.   /dev/adc: -> 0x1c20 (third ACSI device)
  88.   /dev/add: -> 0x1c30 (forth ACSI device)
  89.  
  90. The last for names are available only if the kernel has been compiled
  91. with Atari and ACSI support.
  92.  
  93.   The name must be followed by a decimal number, that stands for the
  94. partition number. Internally, the value of the number is just
  95. added to the device number mentioned in the table above. The
  96. exceptions are /dev/ram and /dev/fd, where /dev/ram refers to an
  97. initial ramdisk loaded by your bootstrap program (please consult the
  98. instructions for your bootstrap program to find out how to load an
  99. initial ramdisk). As of kernel version 2.0.18 you must specify
  100. /dev/ram as the root device if you want to boot from an initial
  101. ramdisk. For the floppy devices, /dev/fd, the number stands for the
  102. floppy drive number (there are no partitions on floppy disks). I.e.,
  103. /dev/fd0 stands for the first drive, /dev/fd1 for the second, and so
  104. on. Since the number is just added, you can also force the disk format
  105. by adding a number greater than 3. If you look into your /dev
  106. directory, use can see the /dev/fd0D720 has major 2 and minor 16. You
  107. can specify this device for the root FS by writing "root=/dev/fd16" on
  108. the kernel command line.
  109.  
  110. [Strange and maybe uninteresting stuff ON]
  111.  
  112.   This unusual translation of device names has some strange
  113. consequences: If, for example, you have a symbolic link from /dev/fd
  114. to /dev/fd0D720 as an abbreviation for floppy driver #0 in DD format,
  115. you cannot use this name for specifying the root device, because the
  116. kernel cannot see this symlink before mounting the root FS and it
  117. isn't in the table above. If you would use it, the root device weren't
  118. set at all, without error message. Another example: You cannot use a
  119. partition on e.g. the sixth SCSI disk as the root filesystem, if you
  120. want to specify it by name. This is, because only the devices up to
  121. /dev/sde are in the table above, but not /dev/sdf. Although, you can
  122. use the sixth SCSI disk for the root FS, but you have to specify the
  123. device by number... (see below). Or, even more strange, you can use the
  124. fact that there is no range checking of the partition number, and your
  125. knowledge that each disk uses 16 minors, and write "root=/dev/sde17"
  126. (for /dev/sdf1).
  127.  
  128. [Strange and maybe uninteresting stuff OFF]
  129.  
  130.   If the device containing your root partition isn't in the table
  131. above, you can also specify it by major and minor numbers. These are
  132. written in hex, with no prefix and no separator between. E.g., if you
  133. have a CD with contents appropriate as a root filesystem in the first
  134. SCSI CD-ROM drive, you boot from it by "root=0b00". Here, hex "0b" =
  135. decimal 11 is the major of SCSI CD-ROMs, and the minor 0 stands for
  136. the first of these. You can find out all valid major numbers by
  137. looking into include/linux/major.h.
  138.  
  139.  
  140. 2.2) ro, rw
  141. -----------
  142.  
  143. Syntax: ro
  144.     or: rw
  145.  
  146. These two options tell the kernel whether it should mount the root
  147. filesystem read-only or read-write. The default is read-only, except
  148. for ramdisks which are read-write.
  149.  
  150.  
  151. 2.3) debug
  152. ----------
  153.  
  154. Syntax: debug
  155.  
  156. This raises the kernel log level to 10 (the default is 7). This is the
  157. same level as set by the "dmesg" command, just that the maximum level
  158. selectable by dmesg is 8.
  159.  
  160.  
  161. 2.4) debug=
  162. -----------
  163.  
  164. Syntax: debug=<device>
  165.  
  166. This option causes certain kernel messages be printed to the selected
  167. debugging device. This can aid debugging the kernel, since the
  168. messages can be captured and analyzed on some other machine. Which
  169. devices are possible depends on the machine type. There are no checks
  170. for the validity of the device name. If the device isn't implemented,
  171. nothing happens.
  172.  
  173.   Messages logged this way are in general stack dumps after kernel
  174. memory faults or bad kernel traps, and kernel panics. To be exact: all
  175. messages of level 0 (panic messages) and all messages printed while
  176. the log level is 8 or more (their level doesn't matter). Before stack
  177. dumps, the kernel sets the log level to 10 automatically. A level of
  178. at least 8 can also be set by the "debug" command line option (see
  179. 2.3) and at run time with "dmesg -n 8".
  180.  
  181. Devices possible for Amiga:
  182.  
  183.  - "ser": built-in serial port; parameters: 9600bps, 8N1
  184.  - "mem": Save the messages to a reserved area in chip mem. After
  185.           rebooting, they can be read under AmigaOS with the tool
  186.           'dmesg'.
  187.  
  188. Devices possible for Atari:
  189.  
  190.  - "ser1": ST-MFP serial port ("Modem1"); parameters: 9600bps, 8N1
  191.  - "ser2": SCC channel B serial port ("Modem2"); parameters: 9600bps, 8N1
  192.  - "ser" : default serial port
  193.            This is "ser2" for a Falcon, and "ser1" for any other machine
  194.  - "midi": The MIDI port; parameters: 31250bps, 8N1
  195.  - "par" : parallel port
  196.            The printing routine for this implements a timeout for the
  197.            case there's no printer connected (else the kernel would
  198.            lock up). The timeout is not exact, but usually a few
  199.            seconds.
  200.  
  201.  
  202. 2.6) ramdisk=
  203. -------------
  204.  
  205. Syntax: ramdisk=<size>
  206.  
  207.   This option instructs the kernel to set up a ramdisk of the given
  208. size in KBytes. Do not use this option if the ramdisk contents are
  209. passed by bootstrap! In this case, the size is selected automatically
  210. and should not be overwritten.
  211.  
  212.   The only application is for root filesystems on floppy disks, that
  213. should be loaded into memory. To do that, select the corresponding
  214. size of the disk as ramdisk size, and set the root device to the disk
  215. drive (with "root=").
  216.  
  217.  
  218. 2.7) swap=
  219. -----------
  220.  
  221. Syntax: swap=<max_age>,<adv>,<decl>,<init_age>,<cl_fract>,<cl_min>,\
  222.         <pgout_wgt>,<bfout_wgt>
  223. (All optional)
  224.  
  225. TODO
  226.  
  227.  
  228. 2.8) buff=
  229. -----------
  230.  
  231. Syntax: buff=<max_age>,<adv>,<decl>,<init_age>,<bfout_wgt>,<mem_grace>
  232. (All optional)
  233.  
  234. TODO
  235.  
  236.  
  237.  
  238. 3) General Device Options (Amiga and Atari)
  239. ===========================================
  240.  
  241. 3.1) ether=
  242. -----------
  243.  
  244. Syntax: ether=[<irq>[,<base_addr>[,<mem_start>[,<mem_end>]]]],<dev-name>
  245.  
  246.   <dev-name> is the name of a net driver, as specified in
  247. drivers/net/Space.c in the Linux source. Most prominent are eth0, ...
  248. eth3, sl0, ... sl3, ppp0, ..., ppp3, dummy, and lo.
  249.  
  250.   The non-ethernet drivers (sl, ppp, dummy, lo) obviously ignore the
  251. settings by this options. Also, the existing ethernet drivers for
  252. Linux/m68k (ariadne, a2065, hydra) don't use them because Zorro boards
  253. are really Plug-'n-Play, so the "ether=" option is useless altogether
  254. for Linux/m68k.
  255.  
  256.  
  257. 3.2) hd=
  258. --------
  259.  
  260. Syntax: hd=<cylinders>,<heads>,<sectors>
  261.  
  262.   This option sets the disk geometry of an IDE disk. The first hd=
  263. option is for the first IDE disk, the second for the second one.
  264. (I.e., you can give this option twice.) In most cases, you won't have
  265. to use this option, since the kernel can obtain the geometry data
  266. itself. It exists just for the case that this fails for one of your
  267. disks.
  268.  
  269.  
  270. 3.3) max_scsi_luns=
  271. -------------------
  272.  
  273. Syntax: max_scsi_luns=<n>
  274.  
  275.   Sets the maximum number of LUNs (logical units) of SCSI devices to
  276. be scanned. Valid values for <n> are between 1 and 8. Default is 8 if
  277. "Probe all LUNs on each SCSI device" was selected during the kernel
  278. configuration, else 1.
  279.  
  280.  
  281. 3.4) st=
  282. --------
  283.  
  284. Syntax: st=<buffer_size>,[<write_thres>,[<max_buffers>]]
  285.  
  286.   Sets several parameters of the SCSI tape driver. <buffer_size> is
  287. the number of 512-byte buffers reserved for tape operations for each
  288. device. <write_thres> sets the number of blocks which must be filled
  289. to start an actual write operation to the tape. Maximum value is the
  290. total number of buffers. <max_buffer> limits the total number of
  291. buffers allocated for all tape devices.
  292.  
  293.  
  294. 3.5) dmasound=
  295. --------------
  296.  
  297. Syntax: dmasound=[<buffers>,<buffer-size>[,<catch-radius>]]
  298.  
  299.   This option controls some configurations of the Linux/m68k DMA sound
  300. driver (Amiga and Atari): <buffers> is the number of buffers you want
  301. to use (minimum 4, default 4), <buffer-size> is the size of each
  302. buffer in kilobytes (minimum 4, default 32) and <catch-radius> says
  303. how much percent of error will be tolerated when setting a frequency
  304. (maximum 10, default 0). For example with 3% you can play 8000Hz
  305. AU-Files on the Falcon with its hardware frequency of 8195Hz and thus
  306. don't need to expand the sound.
  307.  
  308.  
  309.  
  310. 4) Options for Atari Only
  311. =========================
  312.  
  313. 4.1) video=
  314. --------------
  315.  
  316. Syntax: video=<fbname>:<sub-options...>
  317.  
  318. The <fbname> parameter specifies the name of the frame buffer,
  319. eg. most atari users will want to specify `atafb' here. The
  320. <sub-options> is a comma-separated list of the sub-options listed
  321. below.
  322.  
  323. NB: Please notice that this option was renamed from `atavideo' to
  324.     `video' during the development of the 1.3.x kernels, thus you
  325.     might need to update your boot-scripts if upgrading to 2.0.x from
  326.     an 1.2.13ply kernel.
  327.  
  328. NBB: The behavior of video= was changed in 2.1.57 so the recommended
  329. option is to specify the name of the frame buffer.
  330.  
  331. 4.1.1) Video Mode
  332. -----------------
  333.  
  334. This sub-option may be any of the predefined video modes, as listed
  335. in atari/atafb.c in the Linux/m68k source tree. The kernel will
  336. activate the given video mode at boot time and make it the default
  337. mode, if the hardware allows. Currently defined names are:
  338.  
  339.  - stlow           : 320x200x4
  340.  - stmid, default5 : 640x200x2
  341.  - sthigh, default4: 640x400x1
  342.  - ttlow           : 320x480x8, TT only
  343.  - ttmid, default1 : 640x480x4, TT only
  344.  - tthigh, default2: 1280x960x1, TT only
  345.  - vga2            : 640x480x1, Falcon only
  346.  - vga4            : 640x480x2, Falcon only
  347.  - vga16, default3 : 640x480x4, Falcon only
  348.  - vga256          : 640x480x8, Falcon only
  349.  - falh2           : 896x608x1, Falcon only
  350.  - falh16          : 896x608x4, Falcon only
  351.  
  352.   If no video mode is given on the command line, the kernel tries the
  353. modes names "default<n>" in turn, until one is possible with the
  354. hardware in use.
  355.  
  356.   A video mode setting doesn't make sense, if the external driver is
  357. activated by a "external:" sub-option.
  358.  
  359. 4.1.2) inverse
  360. --------------
  361.  
  362. Invert the display. This affects both, text (consoles) and graphics
  363. (X) display. Usually, the background is chosen to be black. With this
  364. option, you can make the background white.
  365.  
  366. 4.1.3) font
  367. -----------
  368.  
  369. Syntax: font:<fontname>
  370.  
  371. Specify the font to use in text modes. Currently you can choose only
  372. between `VGA8x8', `VGA8x16' and `PEARL8x8'. `VGA8x8' is default, if the
  373. vertical size of the display is less than 400 pixel rows. Otherwise, the
  374. `VGA8x16' font is the default.
  375.  
  376. 4.1.4) hwscroll_
  377. ----------------
  378.  
  379. Syntax: hwscroll_<n>
  380.  
  381. The number of additional lines of video memory to reserve for
  382. speeding up the scrolling ("hardware scrolling"). Hardware scrolling
  383. is possible only if the kernel can set the video base address in steps
  384. fine enough. This is true for STE, MegaSTE, TT, and Falcon. It is not
  385. possible with plain STs and graphics cards (The former because the
  386. base address must be on a 256 byte boundary there, the latter because
  387. the kernel doesn't know how to set the base address at all.)
  388.  
  389.   By default, <n> is set to the number of visible text lines on the
  390. display. Thus, the amount of video memory is doubled, compared to no
  391. hardware scrolling. You can turn off the hardware scrolling altogether
  392. by setting <n> to 0.
  393.  
  394. 4.1.5) internal:
  395. ----------------
  396.  
  397. Syntax: internal:<xres>;<yres>[;<xres_max>;<yres_max>;<offset>]
  398.  
  399. This option specifies the capabilities of some extended internal video
  400. hardware, like e.g. OverScan. <xres> and <yres> give the (extended)
  401. dimensions of the screen.
  402.  
  403.   If your OverScan needs a black border, you have to write the last
  404. three arguments of the "internal:". <xres_max> is the maximum line
  405. length the hardware allows, <yres_max> the maximum number of lines.
  406. <offset> is the offset of the visible part of the screen memory to its
  407. physical start, in bytes.
  408.  
  409.   Often, extended interval video hardware has to be activated somehow.
  410. For this, see the "sw_*" options below.
  411.  
  412. 4.1.6) external:
  413. ----------------
  414.  
  415. Syntax:
  416.   external:<xres>;<yres>;<depth>;<org>;<scrmem>[;<scrlen>[;<vgabase>\
  417.            [;<colw>[;<coltype>[;<xres_virtual>]]]]]
  418.  
  419. [I had to break this line...]
  420.  
  421.   This is probably the most complicated parameter... It specifies that
  422. you have some external video hardware (a graphics board), and how to
  423. use it under Linux/m68k. The kernel cannot know more about the hardware
  424. than you tell it here! The kernel also is unable to set or change any
  425. video modes, since it doesn't know about any board internal. So, you
  426. have to switch to that video mode before you start Linux, and cannot
  427. switch to another mode once Linux has started.
  428.  
  429.   The first 3 parameters of this sub-option should be obvious: <xres>,
  430. <yres> and <depth> give the dimensions of the screen and the number of
  431. planes (depth). The depth is is the logarithm to base 2 of the number
  432. of colors possible. (Or, the other way round: The number of colors is
  433. 2^depth).
  434.  
  435.   You have to tell the kernel furthermore how the video memory is
  436. organized. This is done by a letter as <org> parameter:
  437.  
  438.  'n': "normal planes", i.e. one whole plane after another
  439.  'i': "interleaved planes", i.e. 16 bit of the first plane, than 16 bit
  440.       of the next, and so on... This mode is used only with the
  441.       built-in Atari video modes, I think there is no card that
  442.       supports this mode.
  443.  'p': "packed pixels", i.e. <depth> consecutive bits stand for all
  444.       planes of one pixel; this is the most common mode for 8 planes
  445.       (256 colors) on graphic cards
  446.  't': "true color" (more or less packed pixels, but without a color
  447.       lookup table); usually depth is 24
  448.  
  449. For monochrome modes (i.e., <depth> is 1), the <org> letter has a
  450. different meaning:
  451.  
  452.  'n': normal colors, i.e. 0=white, 1=black
  453.  'i': inverted colors, i.e. 0=black, 1=white
  454.  
  455.   The next important information about the video hardware is the base
  456. address of the video memory. That is given in the <scrmem> parameter,
  457. as a hexadecimal number with a "0x" prefix. You have to find out this
  458. address in the documentation of your hardware.
  459.  
  460.   The next parameter, <scrlen>, tells the kernel about the size of the
  461. video memory. If it's missing, the size is calculated from <xres>,
  462. <yres>, and <depth>. For now, it is not useful to write a value here.
  463. It would be used only for hardware scrolling (which isn't possible
  464. with the external driver, because the kernel cannot set the video base
  465. address), or for virtual resolutions under X (which the X server
  466. doesn't support yet). So, it's currently best to leave this field
  467. empty, either by ending the "external:" after the video address or by
  468. writing two consecutive semicolons, if you want to give a <vgabase>
  469. (it is allowed to leave this parameter empty).
  470.  
  471.   The <vgabase> parameter is optional. If it is not given, the kernel
  472. cannot read or write any color registers of the video hardware, and
  473. thus you have to set appropriate colors before you start Linux. But if
  474. your card is somehow VGA compatible, you can tell the kernel the base
  475. address of the VGA register set, so it can change the color lookup
  476. table. You have to look up this address in your board's documentation.
  477. To avoid misunderstandings: <vgabase> is the _base_ address, i.e. a 4k
  478. aligned address. For read/writing the color registers, the kernel
  479. uses the addresses vgabase+0x3c7...vgabase+0x3c9. The <vgabase>
  480. parameter is written in hexadecimal with a "0x" prefix, just as
  481. <scrmem>.
  482.  
  483.   <colw> is meaningful only if <vgabase> is specified. It tells the
  484. kernel how wide each of the color register is, i.e. the number of bits
  485. per single color (red/green/blue). Default is 6, another quite usual
  486. value is 8.
  487.  
  488.   Also <coltype> is used together with <vgabase>. It tells the kernel
  489. about the color register model of your gfx board. Currently, the types
  490. "vga" (which is also the default) and "mv300" (SANG MV300) are
  491. implemented.
  492.  
  493.   Parameter <xres_virtual> is required for ProMST or ET4000 cards where
  494. the physical linelength differs from the visible length. With ProMST, 
  495. xres_virtual must be set to 2048. For ET4000, xres_virtual depends on the
  496. initialisation of the video-card.
  497. If you're missing a corresponding yres_virtual: the external part is legacy,
  498. therefore we don't support hardware-dependend functions like hardware-scroll,
  499. panning or blanking.
  500.  
  501. 4.1.7) eclock:
  502. --------------
  503.  
  504. The external pixel clock attached to the Falcon VIDEL shifter. This
  505. currently works only with the ScreenWonder!
  506.  
  507. 4.1.8) monitorcap:
  508. -------------------
  509.  
  510. Syntax: monitorcap:<vmin>;<vmax>;<hmin>;<hmax>
  511.  
  512. This describes the capabilities of a multisync monitor. Don't use it
  513. with a fixed-frequency monitor! For now, only the Falcon frame buffer
  514. uses the settings of "monitorcap:".
  515.  
  516.   <vmin> and <vmax> are the minimum and maximum, resp., vertical frequencies
  517. your monitor can work with, in Hz. <hmin> and <hmax> are the same for
  518. the horizontal frequency, in kHz.
  519.  
  520.   The defaults are 58;62;31;32 (VGA compatible).
  521.  
  522.   The defaults for TV/SC1224/SC1435 cover both PAL and NTSC standards.
  523.  
  524. 4.1.9) keep
  525. ------------
  526.  
  527. If this option is given, the framebuffer device doesn't do any video
  528. mode calculations and settings on its own. The only Atari fb device
  529. that does this currently is the Falcon.
  530.  
  531.   What you reach with this: Settings for unknown video extensions
  532. aren't overridden by the driver, so you can still use the mode found
  533. when booting, when the driver doesn't know to set this mode itself.
  534. But this also means, that you can't switch video modes anymore...
  535.  
  536.   An example where you may want to use "keep" is the ScreenBlaster for
  537. the Falcon.
  538.  
  539.  
  540. 4.2) atamouse=
  541. --------------
  542.  
  543. Syntax: atamouse=<x-threshold>,[<y-threshold>]
  544.  
  545.   With this option, you can set the mouse movement reporting threshold.
  546. This is the number of pixels of mouse movement that have to accumulate
  547. before the IKBD sends a new mouse packet to the kernel. Higher values
  548. reduce the mouse interrupt load and thus reduce the chance of keyboard
  549. overruns. Lower values give a slightly faster mouse responses and
  550. slightly better mouse tracking.
  551.  
  552.   You can set the threshold in x and y separately, but usually this is
  553. of little practical use. If there's just one number in the option, it
  554. is used for both dimensions. The default value is 2 for both
  555. thresholds.
  556.  
  557.  
  558. 4.3) ataflop=
  559. -------------
  560.  
  561. Syntax: ataflop=<drive type>[,<trackbuffering>[,<steprateA>[,<steprateB>]]]
  562.  
  563.    The drive type may be 0, 1, or 2, for DD, HD, and ED, resp. This
  564.    setting affects how much buffers are reserved and which formats are
  565.    probed (see also below). The default is 1 (HD). Only one drive type
  566.    can be selected. If you have two disk drives, select the "better"
  567.    type.
  568.  
  569.    The second parameter <trackbuffer> tells the kernel whether to use
  570.    track buffering (1) or not (0). The default is machine-dependent:
  571.    no for the Medusa and yes for all others.
  572.  
  573.    With the two following parameters, you can change the default
  574.    steprate used for drive A and B, resp. 
  575.  
  576.  
  577. 4.4) atascsi=
  578. -------------
  579.  
  580. Syntax: atascsi=<can_queue>[,<cmd_per_lun>[,<scat-gat>[,<host-id>[,<tagged>]]]]
  581.  
  582.   This option sets some parameters for the Atari native SCSI driver.
  583. Generally, any number of arguments can be omitted from the end. And
  584. for each of the numbers, a negative value means "use default". The
  585. defaults depend on whether TT-style or Falcon-style SCSI is used.
  586. Below, defaults are noted as n/m, where the first value refers to
  587. TT-SCSI and the latter to Falcon-SCSI. If an illegal value is given
  588. for one parameter, an error message is printed and that one setting is
  589. ignored (other aren't affected).
  590.  
  591.   <can_queue>:
  592.     This is the maximum number of SCSI commands queued internal to the
  593.     Atari SCSI driver. A value of 1 effectively turns off the driver
  594.     internal multitasking (if it makes problems). Legal values are >=
  595.     1. <can_queue> can be as high as you like, but values greater than
  596.     <cmd_per_lun> times the number of SCSI targets (LUNs) you have
  597.     don't make sense. Default: 16/8.
  598.  
  599.   <cmd_per_lun>:
  600.     Maximum number of SCSI commands issued to the driver for one
  601.     logical unit (LUN, usually one SCSI target). Legal values start
  602.     from 1. If tagged queuing (see below) is not used, values greater
  603.     than 2 don't make sense, but waste memory. Otherwise, the maximum
  604.     is the number of command tags available to the driver (currently
  605.     32). Default: 8/1. (Note: Values > 1 seem to cause problems on a
  606.     Falcon, cause not yet known.)
  607.  
  608.       The <cmd_per_lun> value at a great part determines the amount of
  609.     memory SCSI reserves for itself. The formula is rather
  610.     complicated, but I can give you some hints:
  611.       no scatter-gather  : cmd_per_lun * 232 bytes
  612.       full scatter-gather: cmd_per_lun * approx. 17 Kbytes
  613.  
  614.   <scat-gat>:
  615.     Size of the scatter-gather table, i.e. the number of requests
  616.     consecutive on the disk that can be merged into one SCSI command.
  617.     Legal values are between 0 and 255. Default: 255/0. Note: This
  618.     value is forced to 0 on a Falcon, since scatter-gather isn't
  619.     possible with the ST-DMA. Not using scatter-gather hurts
  620.     perfomance significantly.
  621.  
  622.   <host-id>:
  623.     The SCSI ID to be used by the initiator (your Atari). This is
  624.     usually 7, the highest possible ID. Every ID on the SCSI bus must
  625.     be unique. Default: determined at run time: If the NV-RAM checksum
  626.     is valid, and bit 7 in byte 30 of the NV-RAM is set, the lower 3
  627.     bits of this byte are used as the host ID. (This method is defined
  628.     by Atari and also used by some TOS HD drivers.) If the above
  629.     isn't given, the default ID is 7. (both, TT and Falcon).
  630.  
  631.   <tagged>:
  632.     0 means turn off tagged queuing support, all other values > 0 mean
  633.     use tagged queuing for targets that support it. Default: currently
  634.     off, but this may change when tagged queuing handling has been
  635.     proofed to be reliable.
  636.  
  637.     Tagged queuing means that more than one command can be issued to
  638.     one LUN, and the SCSI device itself orders the requests so they
  639.     can be performed in optimal order. Not all SCSI devices support
  640.     tagged queuing (:-().
  641.  
  642. 4.6 switches=
  643. -------------
  644.  
  645. Syntax: switches=<list of switches>
  646.  
  647.   With this option you can switch some hardware lines that are often
  648. used to enable/disable certain hardware extensions. Examples are
  649. OverScan, overclocking, ...
  650.  
  651.   The <list of switches> is a comma-separated list of the following
  652. items:
  653.  
  654.   ikbd: set RTS of the keyboard ACIA high
  655.   midi: set RTS of the MIDI ACIA high
  656.   snd6: set bit 6 of the PSG port A
  657.   snd7: set bit 6 of the PSG port A
  658.  
  659. It doesn't make sense to mention a switch more than once (no
  660. difference to only once), but you can give as many switches as you
  661. want to enable different features. The switch lines are set as early
  662. as possible during kernel initialization (even before determining the
  663. present hardware.)
  664.  
  665.   All of the items can also be prefixed with "ov_", i.e. "ov_ikbd",
  666. "ov_midi", ... These options are meant for switching on an OverScan
  667. video extension. The difference to the bare option is that the
  668. switch-on is done after video initialization, and somehow synchronized
  669. to the HBLANK. A speciality is that ov_ikbd and ov_midi are switched
  670. off before rebooting, so that OverScan is disabled and TOS boots
  671. correctly.
  672.  
  673.   If you give an option both, with and without the "ov_" prefix, the
  674. earlier initialization ("ov_"-less) takes precedence. But the
  675. switching-off on reset still happens in this case.
  676.  
  677. 4.5) stram_swap=
  678. ----------------
  679.  
  680. Syntax: stram_swap=<do_swap>[,<max_swap>]
  681.  
  682.   This option is available only if the kernel has been compiled with
  683. CONFIG_STRAM_SWAP enabled. Normally, the kernel then determines
  684. dynamically whether to actually use ST-RAM as swap space. (Currently,
  685. the fraction of ST-RAM must be less or equal 1/3 of total memory to
  686. enable this swapping.) You can override the kernel's decision by
  687. specifying this option. 1 for <do_swap> means always enable the swap,
  688. even if you have less alternate RAM. 0 stands for never swap to
  689. ST-RAM, even if it's small enough compared to the rest of memory.
  690.  
  691.   If ST-RAM swapping is enabled, the kernel usually uses all free
  692. ST-RAM as swap "device". (If the kernel resides in ST-RAM, the region
  693. allocated by it is obviously never used for swapping :-) You can also
  694. limit this amount by specifying the second parameter, <max_swap>, if
  695. you want to use parts of ST-RAM as normal system memory. <max_swap> is
  696. in kBytes and the number should be a multiple of 4 (otherwise: rounded
  697. down).
  698.  
  699. 5) Options for Amiga Only:
  700. ==========================
  701.  
  702. 5.1) video=
  703. -----------
  704.  
  705. Syntax: video=<fbname>:<sub-options...>
  706.  
  707. The <fbname> parameter specifies the name of the frame buffer, valid
  708. options are `amifb', `cyberfb', `retz3' and `clgen', provided that the
  709. respective frame buffer devices have been compiled into the kernel (or
  710. compiled as loadable modules). The behavior of the <fbname> option was
  711. changed in 2.1.57 so it is now recommended to specify this option.
  712.  
  713. The <sub-options> is a comma-separated list of the sub-options listed
  714. below. This option is organized similar to the Atari version of the
  715. "video"-option (4.1), but knows fewer sub-options.
  716.  
  717. 5.1.1) video mode
  718. -----------------
  719.  
  720. Again, similar to the video mode for the Atari (see 4.1.1). Predefined
  721. modes depend on the used frame buffer device.
  722.  
  723. OCS, ECS and AGA machines all use the color frame buffer. The following
  724. predefined video modes are available:
  725.  
  726. NTSC modes:
  727.  - ntsc            : 640x200, 15 kHz, 60 Hz
  728.  - ntsc-lace       : 640x400, 15 kHz, 60 Hz interlaced
  729. PAL modes:
  730.  - pal             : 640x256, 15 kHz, 50 Hz
  731.  - pal-lace        : 640x512, 15 kHz, 50 Hz interlaced
  732. ECS modes:
  733.  - multiscan       : 640x480, 29 kHz, 57 Hz
  734.  - multiscan-lace  : 640x960, 29 kHz, 57 Hz interlaced
  735.  - euro36          : 640x200, 15 kHz, 72 Hz
  736.  - euro36-lace     : 640x400, 15 kHz, 72 Hz interlaced
  737.  - euro72          : 640x400, 29 kHz, 68 Hz
  738.  - euro72-lace     : 640x800, 29 kHz, 68 Hz interlaced
  739.  - super72         : 800x300, 23 kHz, 70 Hz
  740.  - super72-lace    : 800x600, 23 kHz, 70 Hz interlaced
  741.  - dblntsc-ff      : 640x400, 27 kHz, 57 Hz
  742.  - dblntsc-lace    : 640x800, 27 kHz, 57 Hz interlaced
  743.  - dblpal-ff       : 640x512, 27 kHz, 47 Hz
  744.  - dblpal-lace     : 640x1024, 27 kHz, 47 Hz interlaced
  745.  - dblntsc         : 640x200, 27 kHz, 57 Hz doublescan
  746.  - dblpal          : 640x256, 27 kHz, 47 Hz doublescan
  747. VGA modes:
  748.  - vga             : 640x480, 31 kHz, 60 Hz
  749.  - vga70           : 640x400, 31 kHz, 70 Hz
  750.  
  751. Please notice that the ECS and VGA modes require either an ECS or AGA
  752. chipset, and that these modes are limited to 2-bit color for the ECS
  753. chipset and 8-bit color for the AGA chipset.
  754.  
  755. 5.1.2) depth
  756. ------------
  757.  
  758. Syntax: depth:<nr. of bit-planes>
  759.  
  760. Specify the number of bit-planes for the selected video-mode.
  761.  
  762. 5.1.3) inverse
  763. --------------
  764.  
  765. Use inverted display. Functionally the same as the "inverse"
  766. sub-option for the Atari.
  767.  
  768. 5.1.4) font
  769. -----------
  770.  
  771. Syntax: font:<fontname>
  772.  
  773. Specify the font to use in text modes. Functionally the same as the
  774. "font" sub-option for the Atari, except that `PEARL8x8' is used instead
  775. of `VGA8x8' if the vertical size of the display is less than 400 pixel
  776. rows.
  777.  
  778. 5.1.5) monitorcap:
  779. -------------------
  780.  
  781. Syntax: monitorcap:<vmin>;<vmax>;<hmin>;<hmax>
  782.  
  783. This describes the capabilities of a multisync monitor. For now, only
  784. the color frame buffer uses the settings of "monitorcap:".
  785.  
  786.   <vmin> and <vmax> are the minimum and maximum, resp., vertical frequencies
  787. your monitor can work with, in Hz. <hmin> and <hmax> are the same for
  788. the horizontal frequency, in kHz.
  789.  
  790.   The defaults are 50;90;15;38 (Generic Amiga monitor).
  791.  
  792.  
  793. 5.2) fd_def_df0=
  794. ----------------
  795.  
  796. Syntax: fd_def_df0=<value>
  797.  
  798. Sets the df0 value for "silent" floppy drives. The value should be in
  799. hexadecimal with "0x" prefix.
  800.  
  801.  
  802. 5.3) wd33c93=
  803. -------------
  804.  
  805. Syntax: wd33c93=<sub-options...>
  806.  
  807. The <sub-options> is a comma-separated list of the sub-options listed
  808. below.
  809.  
  810. 5.3.1) nosync
  811. -------------
  812.  
  813. Syntax: nosync:bitmask
  814.  
  815.   bitmask is a byte where the 1st 7 bits correspond with the 7
  816. possible SCSI devices. Set a bit to prevent sync negotiation on that
  817. device. To maintain backwards compatibility, a command-line such as
  818. "wd33c93=255" will be automatically translated to
  819. "wd33c93=nosync:0xff". The default is to disable sync negotiation for
  820. all devices, eg. nosync:0xff.
  821.  
  822. 5.3.2) period
  823. -------------
  824.  
  825. Syntax: period:ns
  826.  
  827.   `ns' is the minimum # of nanoseconds in a SCSI data transfer
  828. period. Default is 500; acceptable values are 250 - 1000.
  829.  
  830. 5.3.3) disconnect
  831. -----------------
  832.  
  833. Syntax: disconnect:x
  834.  
  835.   Specify x = 0 to never allow disconnects, 2 to always allow them.
  836. x = 1 does 'adaptive' disconnects, which is the default and generally
  837. the best choice.
  838.  
  839. 5.3.4) debug
  840. ------------
  841.  
  842. Syntax: debug:x
  843.  
  844.   If `DEBUGGING_ON' is defined, x is a bit mask that causes various
  845. types of debug output to printed - see the DB_xxx defines in
  846. wd33c93.h.
  847.  
  848. 5.3.5) clock
  849. ------------
  850.  
  851. Syntax: clock:x
  852.  
  853.   x = clock input in MHz for WD33c93 chip. Normal values would be from
  854. 8 through 20. The default value depends on your hostadapter(s),
  855. default for the A3000 internal controller is 14, for the A2091 its 8
  856. and for the GVP hostadapters its either 8 or 14, depending on the
  857. hostadapter and the SCSI-clock jumper present on some GVP
  858. hostadapters.
  859.  
  860. 5.3.6) next
  861. -----------
  862.  
  863.   No argument. Used to separate blocks of keywords when there's more
  864. than one host adapter in the system.
  865.  
  866. 5.3.7) nodma
  867. ------------
  868.  
  869. Syntax: nodma:x
  870.  
  871.   If x is 1 (or if the option is just written as "nodma"), the WD33c93
  872. controller will not use DMA (= direct memory access) to access the
  873. Amiga's memory.  This is useful for some systems (like A3000's and
  874. A4000's with the A3640 accelerator, revision 3.0) that have problems
  875. using DMA to chip memory.  The default is 0, i.e. to use DMA if
  876. possible.
  877.  
  878.  
  879. 5.4) gvp11=
  880. -----------
  881.  
  882. Syntax: gvp11=<addr-mask>
  883.  
  884.   The earlier versions of the GVP driver did not handle DMA
  885. address-mask settings correctly which made it necessary for some
  886. people to use this option, in order to get their GVP controller
  887. running under Linux. These problems have hopefully been solved and the
  888. use of this option is now highly unrecommended!
  889.  
  890.   Incorrect use can lead to unpredictable behavior, so please only use
  891. this option if you *know* what you are doing and have a reason to do
  892. so. In any case if you experience problems and need to use this
  893. option, please inform us about it by mailing to the Linux/68k kernel
  894. mailing list.
  895.  
  896.   The address mask set by this option specifies which addresses are
  897. valid for DMA with the GVP Series II SCSI controller. An address is
  898. valid, if no bits are set except the bits that are set in the mask,
  899. too.
  900.  
  901.   Some versions of the GVP can only DMA into a 24 bit address range,
  902. some can address a 25 bit address range while others can use the whole
  903. 32 bit address range for DMA. The correct setting depends on your
  904. controller and should be autodetected by the driver. An example is the
  905. 24 bit region which is specified by a mask of 0x00fffffe.
  906.  
  907.  
  908. /* Local Variables: */
  909. /* mode: text       */
  910. /* End:             */
  911.